home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Magazine / Online / OpenURL / Developer / Source / prefs_mailereditwin.h < prev    next >
C/C++ Source or Header  |  1999-09-26  |  1KB  |  46 lines

  1. /*
  2. ** OpenURL - MUI preferences for openurl.library
  3. ** Written by Troels Walsted Hansen <troels@thule.no>
  4. ** Placed in the public domain.
  5. **
  6. ** Methods, attributes, dispatcher and instance data definitions for the
  7. ** MailerEditWin Window.mui subclass.
  8. */
  9.  
  10. /**************************************************************************/
  11.  
  12. #define MUIA_MailerEditWin_Mailer                 (TAGBASE_MAILEREDITWIN + 0) /* [I.G] struct URL_MailerNode * */
  13. #define MUIA_MailerEditWin_ListObj                (TAGBASE_MAILEREDITWIN + 1) /* [I..] Object *                 */
  14.  
  15. #define MUIM_MailerEditWin_Ok                     (TAGBASE_MAILEREDITWIN + 25)
  16.  
  17. struct MUIP_MailerEditWin_Ok                      { ULONG MethodID; };
  18.  
  19. /**************************************************************************/
  20.  
  21. SAVEDS ASM ULONG MailerEditWin_Dispatcher(REG(a0) struct IClass *cl, REG(a2) Object *obj, REG(a1) Msg msg);
  22.  
  23. /**************************************************************************/
  24.  
  25. struct MailerEditWin_Data
  26. {
  27.     struct URL_MailerNode *Mailer;
  28.     struct Hook ObjStrHook;
  29.     Object *MailerLstObj;
  30.  
  31.     Object *InfoGrpObj;
  32.     Object *NameStrObj;
  33.     Object *PathPopObj;
  34.     Object *PortStrObj;
  35.  
  36.     Object *CmdGrpObj;
  37.     Object *ShowStrObj;
  38.     Object *ToFrontStrObj;
  39.     Object *WriteMailPopObj;
  40.  
  41.     Object *OkButObj;
  42.     Object *CancelButObj;
  43.  
  44.     ULONG   NotifiesAdded;
  45. };
  46.